home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 23 / AMIGAplus Sonderheft 23 (2000)(Falke)(DE)[!].iso / Updates / Datatypes / PCD-DT / PCD-DT.readme < prev    next >
Text File  |  1999-11-15  |  2KB  |  75 lines

  1. Short:    Datatype for Photo-CD Images (43.12)
  2. Uploader: astegema@ix.urz.uni-heidelberg.de (Achim Stegemann)
  3. Author:   astegema@ix.urz.uni-heidelberg.de (Achim Stegemann)
  4. Type:     util/dtype
  5. Version:  43.12
  6.  
  7. Requires minimum:
  8.  * OS 3.0
  9.  * MC68020
  10.  * A mounted PIPE: handler !!
  11.  * ixemul.library V39
  12.  
  13. Additionally recommended:
  14.  * CyberGraphX with picture.datatype V43 for 24-bit images.
  15.  * MUI 3.8 for the preferences.
  16.  
  17. If you run OS 3.5, it is recommended to install the PCD-DT35 archive !!
  18.  
  19. With the help of the pcd.datatype, your datatype sytem is able to read Photo-CD images.
  20.  
  21. This datatype is freeware and can be used for any purpose.
  22.  
  23. Changes since V43.11:
  24.  * Improved V43 setup to avoid problems under Picasso96 or OS 3.5.
  25.  * Glowicons are now default icons.
  26.  
  27.  
  28. Internet: http://www.rzuser.uni-heidelberg.de/~astegema/
  29.  
  30.  
  31. Important note about the source code:
  32. *************************************
  33.  
  34. The source has been written in C++ using Maxon-C++ V3.
  35. You will find several instructions a bit strange as I have converted all C-style OS-structures
  36. to C++ OS-structures.
  37. E.g.
  38.  
  39. struct Library
  40. {
  41. struct Node lib_Node;
  42. UBYTE lib_Flags;
  43. UBYTE lib_pad;
  44. UWORD lib_NegSize;
  45. UWORD lib_PosSize;
  46. UWORD lib_Version;
  47. UWORD lib_Revision;
  48. APTR lib_IdString;
  49. ULONG lib_Sum;
  50. UWORD lib_OpenCnt;
  51. };
  52.  
  53. has been converted to
  54.  
  55. struct Library:Node // !!!!!
  56. {
  57. UBYTE lib_Flags;
  58. UBYTE lib_pad;
  59. UWORD lib_NegSize;
  60. UWORD lib_PosSize;
  61. UWORD lib_Version;
  62. UWORD lib_Revision;
  63. APTR lib_IdString;
  64. ULONG lib_Sum;
  65. UWORD lib_OpenCnt;
  66. };
  67.  
  68. This simplifies the code as I don't always need to cast variables to fit arguments
  69. in functions.
  70. Additionally C++ allows to leave away the 'struct' keyword !
  71.  
  72. If you like to recompile the source-code for your compiler, you need to adjust the
  73. source-code to C. But this should be no problem.
  74.  
  75.